Use Regular Expression in URL filter
|
Previous Top Next |
· | Page URL Include Filters - determine which HTML pages should be accessed and analyse to follow the links.
|
· | Page URL Exclude Filters - determine which HTML pages should be skipped.
|
· | Picture URL Include Filters - determin which pictures should be downloaded.
|
· | Picture URL Exclude Filters - determin which pictures should be skipped.
|
Reg-expr
|
Description
|
.
|
Matches any character (except newline)
|
x?
|
Matches 0 or 1 x's, where x is any regular expression
|
x*
|
Matches 0 or more x's
|
x+
|
Matches 1 or more x's
|
foo|bar
|
Matches one of foo or bar
|
[xyz]
|
Matches any character in the set xyz, specify ranges with a -
|
[^xyz]
|
Matches any single character not in the set xyz
|
\w
|
Matches an alpha-numeric character, i.e., [a-zA-Z0-9_]
|
(x)
|
Brackets a regular expression
|
\metachar
|
Matches the metacharacter (takes away its special meaning)
|